a7db833ff9e2f9545de205adabbe315276d5ea0c,test/com/floreysoft/jmte/AbstractEngineTest.java,AbstractEngineTest,elseWithoutIfError,#,388
Before Change
@Test(expected = ParseException.class)
public void elseWithoutIfError() throws Exception {
newEngine().transform("${address}${else}NIX${end}", DEFAULT_MODEL);
}
@Test(expected = ParseException.class)
After Change
@Test(expected = ParseException.class)
public void elseWithoutIfError() throws Exception {
Engine newEngine = newEngine();
newEngine.setErrorHandler(getTestErrorHandler());
newEngine.transform("${address}${else}NIX${end}", DEFAULT_MODEL);
}